home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tads110.zip / TRIVIAL.T < prev   
Text File  |  1990-08-07  |  658b  |  26 lines

  1. #include <adv.t>
  2. #include <std.t>
  3.  
  4. startroom: room
  5.     sdesc = "Starting Room"
  6.     ldesc = "You are in the starting room.  There is an exit to the east. "
  7.     east = room2
  8. ;
  9.  
  10. room2: room
  11.     sdesc = "Another room"
  12.     ldesc = "You are in another room.  It is not very interesting here.
  13.      A more interesting room lies to the west. "
  14.     west = startroom
  15. ;
  16.  
  17. figurine: item
  18.     sdesc = "exquisite jade figurine"
  19.     adesc = "an exquisite jade figurine"
  20.     ldesc = "It's an exquisite jade figurine.  You can't imagine how it
  21.      got into this game. "
  22.     location = room2
  23.     noun = 'figurine'
  24.     adjective = 'exquisite' 'jade'
  25. ;
  26.